import { GetServerSidePropsContext } from 'next'; declare function ProfilePage(): JSX.Element; export declare const getServerSideProps: (context: GetServerSidePropsContext) => Promise<{ props: {}; }>; export default ProfilePage;